home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Sapphire Collection / Software Vault (Sapphire Collection) (Digital Impact).ISO / cdr47 / ibrary30.zip / ASICMAKE.BAT < prev    next >
DOS Batch File  |  1994-02-21  |  597b  |  15 lines

  1. @ECHO OFF
  2.   IF "%1"=="" GOTO Info
  3.   ASICC %1 B/OBJ LIB=IBRARY LNK=D:\COMPILER\ASIC
  4.   GOTO Done
  5. :Info
  6.   ECHO This batch file compiles an ASIC program and links it with IBRARY.
  7.   ECHO If you have not already done so, you must change the LNK= specification
  8.   ECHO (on the third line of this .BAT file) to point to the subdirectory
  9.   ECHO where you keep your LINK.EXE program.  Otherwise, just type:
  10.   ECHO    ASICMAKE progname
  11.   ECHO (where "progname" is the name of the program to compile).
  12.   ECHO.
  13.   ECHO See your ASIC manual for details on using libraries with ASIC and ASICC.
  14. :Done
  15.